home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / languages / c / _desklibsm / h / error < prev    next >
Encoding:
Text File  |  1993-05-26  |  529 b   |  19 lines

  1.  
  2. #ifndef __dl_error_h
  3. #define __dl_error_h
  4. #ifndef __kernel_h
  5. #include "kernel.h"
  6. #endif
  7. #ifndef __dl_core_h
  8. #include "Core.h"
  9. #endif
  10.  
  11. extern void Error_ReportInternal(int errornum, char *report);
  12. extern void Error_ReportFatalInternal(int errornum, char *report);
  13. extern void Error_Report(int errornum, char *report);
  14. extern void Error_ReportFatal(int errornum, char *report);
  15. extern BOOL Error_Check(os_error *error);
  16. extern void Error_CheckFatal(os_error *error);
  17. extern BOOL Error_OutOfMemory(BOOL fatal, char *place);
  18. #endif
  19.